This is for consistency with other wrapping list constructors.
We want them all to be transfer full, allow-none.
Update all callers.
manager = gtk_constraint_layout_new ();
gtk_widget_set_layout_manager (GTK_WIDGET (self), manager);
- all_children = gtk_widget_observe_children (GTK_WIDGET (self));
- all_constraints = gtk_constraint_layout_observe_constraints (GTK_CONSTRAINT_LAYOUT (manager));
guides = gtk_constraint_layout_observe_guides (GTK_CONSTRAINT_LAYOUT (manager));
+
+ all_constraints = gtk_constraint_layout_observe_constraints (GTK_CONSTRAINT_LAYOUT (manager));
filter = gtk_custom_filter_new (omit_internal, NULL, NULL);
constraints = (GListModel *)gtk_filter_list_model_new (all_constraints, filter);
g_object_unref (filter);
+ g_object_unref (all_constraints);
+
+ all_children = gtk_widget_observe_children (GTK_WIDGET (self));
filter = gtk_custom_filter_new (omit_internal, NULL, NULL);
children = (GListModel *)gtk_filter_list_model_new (all_children, filter);
g_object_unref (filter);
+ g_object_unref (all_children);
list = g_list_store_new (G_TYPE_LIST_MODEL);
g_list_store_append (list, children);
g_list_store_append (list, guides);
g_list_store_append (list, constraints);
- self->model = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (list)));
g_object_unref (children);
g_object_unref (guides);
g_object_unref (constraints);
- g_object_unref (all_children);
- g_object_unref (all_constraints);
- g_object_unref (list);
+ self->model = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (list)));
controller = (GtkEventController *)gtk_gesture_drag_new ();
g_signal_connect (controller, "drag-begin", G_CALLBACK (drag_begin), self);
g_object_unref (printer_list);
full_list = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (printer_list_list)));
- g_object_unref (printer_list_list);
filter = gtk_custom_filter_new (match_func, NULL, NULL);
dialog->printer_list = G_LIST_MODEL (gtk_filter_list_model_new (full_list, filter));
/**
* gtk_flatten_list_model_new:
- * @model: (nullable) (transfer none): the model to be flattened
+ * @model: (nullable) (transfer full): the model to be flattened
*
* Creates a new #GtkFlattenListModel that flattens @list.
*
"model", model,
NULL);
+ /* we consume the reference */
+ g_clear_object (&model);
+
return result;
}
if ((self->level & GTK_FONT_CHOOSER_LEVEL_STYLE) == 0)
model = g_object_ref (G_LIST_MODEL (fontmap));
else
- model = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (fontmap)));
+ model = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (g_object_ref (fontmap))));
gtk_filter_list_model_set_model (self->filter_model, model);
g_object_unref (model);
}
g_list_store_append (store, dialog->manage_papers_list);
paper_size_list = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (store)));
gtk_drop_down_set_model (GTK_DROP_DOWN (dialog->paper_size_combo), paper_size_list);
- g_object_unref (store);
g_object_unref (paper_size_list);
/* Do this in code, we want the translatable strings without the markup */
g_list_store_append (store, dialog->manage_papers_list);
paper_size_list = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (store)));
gtk_drop_down_set_model (GTK_DROP_DOWN (dialog->paper_size_combo), paper_size_list);
- g_object_unref (store);
g_object_unref (paper_size_list);
/* Load backends */
{
GList *node;
GListStore *lists;
- GListModel *model;
lists = g_list_store_new (G_TYPE_LIST_MODEL);
g_list_store_append (lists, gtk_print_backend_get_printers (backend));
}
- model = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (lists)));
-
- g_object_unref (lists);
-
- return model;
+ return G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (lists)));
}
static void
void
gtk_shortcut_manager_create_controllers (GtkWidget *widget)
{
- GListStore *store;
GtkFlattenListModel *model;
GtkEventController *controller;
- store = g_list_store_new (GTK_TYPE_SHORTCUT_CONTROLLER);
- model = gtk_flatten_list_model_new (G_LIST_MODEL (store));
- g_object_unref (store);
+ model = gtk_flatten_list_model_new (G_LIST_MODEL (g_list_store_new (GTK_TYPE_SHORTCUT_CONTROLLER)));
g_object_set_data_full (G_OBJECT (widget), "gtk-shortcut-manager-bubble", model, g_object_unref);
controller = gtk_shortcut_controller_new_for_model (G_LIST_MODEL (model));
gtk_event_controller_set_name (controller, "gtk-shortcut-manager-bubble");
gtk_widget_add_controller (widget, controller);
- store = g_list_store_new (GTK_TYPE_SHORTCUT_CONTROLLER);
- model = gtk_flatten_list_model_new (G_LIST_MODEL (store));
- g_object_unref (store);
+ model = gtk_flatten_list_model_new (G_LIST_MODEL (g_list_store_new (GTK_TYPE_SHORTCUT_CONTROLLER)));
g_object_set_data_full (G_OBJECT (widget), "gtk-shortcut-manager-capture", model, g_object_unref);
controller = gtk_shortcut_controller_new_for_model (G_LIST_MODEL (model));
gtk_event_controller_set_name (controller, "gtk-shortcut-manager-capture");
g_object_unref (sort_model);
g_object_unref (flatten_model);
- g_object_unref (map_model);
}
static void
object_tree_widget_get_children (GObject *object)
{
GtkWidget *widget = GTK_WIDGET (object);
- GtkFlattenListModel *flatten;
GListStore *list;
GListModel *sublist;
g_list_store_append (list, sublist);
g_object_unref (sublist);
- flatten = gtk_flatten_list_model_new (G_LIST_MODEL (list));
- g_object_unref (list);
-
- return G_LIST_MODEL (flatten);
+ return G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (list)));
}
static GListModel *
const char **props)
{
GListStore *concat;
- GListModel *result;
guint i;
if (props[1] == NULL)
g_object_unref (tmp);
}
- result = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (concat)));
- g_object_unref (concat);
- return result;
+ return G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (concat)));
}
static GListModel *
GtkTreeView *treeview = GTK_TREE_VIEW (object);
GListStore *columns, *selection, *result_list;
GListModel *props;
- GtkFlattenListModel *result;
guint i;
props = list_model_for_properties (object, (const char *[2]) { "model", NULL });
g_object_unref (selection);
g_list_store_append (result_list, columns);
g_object_unref (columns);
- result = gtk_flatten_list_model_new (G_LIST_MODEL (result_list));
- g_object_unref (result_list);
- return G_LIST_MODEL (result);
+ return G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (result_list)));
}
static GListModel *
{
GtkColumnView *view = GTK_COLUMN_VIEW (object);
GListStore *result_list;
- GtkFlattenListModel *result;
GListModel *columns, *sublist;
result_list = g_list_store_new (G_TYPE_LIST_MODEL);
g_list_store_append (result_list, sublist);
g_object_unref (sublist);
- result = gtk_flatten_list_model_new (G_LIST_MODEL (result_list));
- g_object_unref (result_list);
-
- return G_LIST_MODEL (result);
+ return G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (result_list)));
}
static GListModel *
object_get_children (GObject *object)
{
GType object_type;
- GListModel *result, *children;
+ GListModel *children;
GListStore *result_list;
guint i;
object_type = G_OBJECT_TYPE (object);
- result = NULL;
result_list = NULL;
for (i = 0; i < G_N_ELEMENTS (object_tree_class_funcs); i++)
if (children == NULL)
continue;
- if (result_list)
- {
- g_list_store_append (result_list, children);
- g_object_unref (children);
- }
- else if (result == NULL)
- {
- result = children;
- }
- else
- {
- result_list = g_list_store_new (G_TYPE_LIST_MODEL);
- g_list_store_append (result_list, result);
- g_object_unref (result);
- g_list_store_append (result_list, children);
- g_object_unref (children);
- }
- }
+ if (!result_list)
+ result_list = g_list_store_new (G_TYPE_LIST_MODEL);
- if (result_list)
- {
- result = G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (result_list)));
- g_object_unref (result_list);
+ g_list_store_append (result_list, children);
+ g_object_unref (children);
}
- return result;
+ if (result_list)
+ return G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (result_list)));
+ else
+ return NULL;
}
static const char *
{
GtkFilter *custom_filter;
GtkFilterListModel *filter;
- GtkFlattenListModel *flatten;
GListStore *list, *special;
gpointer item;
g_list_store_append (list, filter);
g_object_unref (filter);
- flatten = gtk_flatten_list_model_new (G_LIST_MODEL (list));
- g_object_unref (list);
- return G_LIST_MODEL (flatten);
+ return G_LIST_MODEL (gtk_flatten_list_model_new (G_LIST_MODEL (list)));
}
static void
g_object_unref (model2);
g_object_unref (flatten2);
g_object_unref (flatten1);
- g_object_unref (store2);
- g_object_unref (store1);
g_object_unref (multi);
}
GtkFlattenListModel *result;
GString *changes;
+ if (store)
+ g_object_ref (store);
result = gtk_flatten_list_model_new (G_LIST_MODEL (store));
changes = g_string_new ("");
g_object_set_qdata_full (G_OBJECT(result), changes_quark, changes, free_changes);
g_object_unref (sort2);
g_object_unref (sort1);
g_object_unref (flatten);
- g_object_unref (store);
}
static void